2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
2001-10-18 Matthias Clasen <matthiasc@poet.de>
+ * gtk/gtktreeselection.c (gtk_tree_selection_set_mode):
+ Fix docs. (#61976)
+
+ * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
+
+ * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
+
* gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
* @iter: A valid #GtkTreeIter for the row being modified
* @var_args: va_list of column/value pairs
*
- * See @gtk_list_store_set; this version takes a va_list for use by language
+ * See gtk_list_store_set(); this version takes a va_list for use by language
* bindings.
*
**/
* @list_store: A #GtkListStore
* @iter: A valid #GtkTreeIter
*
- * Removes the given row from the list store. After being removed, @iter is set to be the next valid row, or invalidated if it pointed to the last row inn @list_store
+ * Removes the given row from the list store. After being removed,
+ * @iter is set to be the next valid row, or invalidated if it pointed
+ * to the last row in @list_store.
*
**/
void
* Creates a new row at @position. @iter will be changed to point to this new
* row. If @position is larger than the number of rows on the list, then the
* new row will be appended to the list. The row will be empty before this
- * function is called. To fill in values, you need to call @gtk_list_store_set
- * or @gtk_list_store_set_value.
+ * function is called. To fill in values, you need to call gtk_list_store_set()
+ * or gtk_list_store_set_value().
*
**/
void
* @iter: An unset #GtkTreeIter to set to the new row
* @sibling: A valid #GtkTreeIter, or %NULL
*
- * Inserts a new row before @sibling. If @sibling is %NULL, then the row will be
- * appended to the beginning of the list. @iter will be changed to point to
- * this new row. The row will be empty before this function is called. To fill
- * in values, you need to call @gtk_list_store_set or @gtk_list_store_set_value.
+ * Inserts a new row before @sibling. If @sibling is %NULL, then the row will be
+ * appended to the end of the list. @iter will be changed to point to this new
+ * row. The row will be empty before this function is called. To fill in values,
+ * you need to call gtk_list_store_set() or gtk_list_store_set_value().
*
**/
void
* @iter: An unset #GtkTreeIter to set to the new row
* @sibling: A valid #GtkTreeIter, or %NULL
*
- * Inserts a new row after @sibling. If @sibling is %NULL, then the row will be
- * prepended to the beginning of the list. @iter will be changed to point to
- * this new row. The row will be empty after this function is called. To fill
- * in values, you need to call @gtk_list_store_set or @gtk_list_store_set_value.
+ * Inserts a new row after @sibling. If @sibling is %NULL, then the row will be
+ * prepended to the beginning of the list. @iter will be changed to point to
+ * this new row. The row will be empty after this function is called. To fill
+ * in values, you need to call gtk_list_store_set() or gtk_list_store_set_value().
*
**/
void
* @list_store: A #GtkListStore
* @iter: An unset #GtkTreeIter to set to the prepend row
*
- * Prepend a new row to @list_store. @iter will be changed to point to this new
- * row. The row will be empty after this function is called. To fill in
- * values, you need to call @gtk_list_store_set or @gtk_list_store_set_value.
+ * Prepend a new row to @list_store. @iter will be changed to point to this new
+ * row. The row will be empty after this function is called. To fill in
+ * values, you need to call gtk_list_store_set() or gtk_list_store_set_value().
*
**/
void
*
* Appends a new row to @list_store. @iter will be changed to point to this new
* row. The row will be empty after this function is called. To fill in
- * values, you need to call @gtk_list_store_set or @gtk_list_store_set_value.
+ * values, you need to call gtk_list_store_set() or gtk_list_store_set_value().
*
**/
void
*
* Gets the window ID of a #GtkPlug widget, which can then
* be used to embed this window inside another window, for
- * instance with gtk_sock_add_id (id).
+ * instance with gtk_socket_add_id().
*
* Return value: the window ID for the plug
**/
* @type: The selection mode
*
* Sets the selection mode of the @selection. If the previous type was
- * #GTK_SELECTION_MULTIPLE and, then the anchor is kept selected, if it was
+ * #GTK_SELECTION_MULTIPLE, then the anchor is kept selected, if it was
* previously selected.
**/
void